home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / text / misc / addcr_1_0.lha / AddCR.doc < prev   
Text File  |  1993-08-16  |  2KB  |  65 lines

  1.  
  2. AddCR v1.0 by Son Le
  3. ~~~~~~~~~~~~~~~~~~~~
  4. Yet another Amiga/IBM text file converter, which (surprise, surprise)
  5. converts Amiga style end-of-lines characters ($0a) to IBM format ($0d,$0a)
  6. or vice versa. It is released into the public domain. I have no rights over
  7. it and cannot be held liable for any damages or incorrect conversion. (;
  8.  
  9.  
  10. List of features
  11. ~~~~~~~~~~~~~~~~
  12.  - should work on all amigas (or at least > wb1.2)
  13.  
  14.  - relatively small (11k)
  15.  
  16.  - extremely fast (main loop is written in optimised assembly)
  17.  
  18.  - works in low memory situations (min. memory requirement = 12288 bytes)
  19.  
  20.  - progress indicator
  21.  
  22.  - when converting to Amiga format, only ($0d,$0a) characters are converted
  23.    to $0a (all $xx,$0a are left alone - where $xx <> $0d).
  24.  
  25.  - when converting to IBM format, ($0d,0a) pairs are left alone.
  26.  
  27.  - includes source (compiled with SAS/C v6.3)
  28.  
  29.  
  30. Usage
  31. ~~~~~
  32. AddCR can only be invoke in a CLI shell. Typing "AddCR" or "AddCR ?" will
  33. bring up the usage help info.
  34.  
  35.    10.RAM:> AddCR ?
  36.    Usage: AddCR <switches> files..
  37.    where <switches> is of the following
  38.        -a  Convert file to AMIGA format [CR].
  39.        -b  Convert file to IBM format [LF][CR].
  40.        -q  Quiet processing of file.
  41.        -s  Save backup. (Rename original file to '*.bak')
  42.    Default: -b
  43.  
  44. AddCR defaults to converting Amiga text to IBM format.
  45.  
  46. AddCR outputs to the current directory and defaults to file replacement.
  47. eg. after text has been convert, it will be saved with the original
  48. filename, so if the current directory is the same directory where the
  49. original file resides, then it will be overwritten. If you don't want this
  50. to happen, use the "-s" option.
  51.  
  52. Progressive indicator can be turned off by the "-q" option. (Also speeds up
  53. conversion by a very small amount, almost negligible)
  54.  
  55.  
  56. The Programmer
  57. ~~~~~~~~~~~~~~
  58. If you want to contact me for any reason send email to:
  59.  
  60. s924723@minyos.xx.rmit.oz.au OR
  61.  Son_Le@guru.apana.org
  62.  
  63. One last thing, if you can improve the assembly conversion routines by
  64. any number of cycles please email me the results!
  65.